home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
bitmas1g
/
formmess.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-09-03
|
896b
|
31 lines
VERSION 5.00
Begin VB.Form frmMessage
AutoRedraw = -1 'True
BorderStyle = 1 'Fixed Single
ClientHeight = 3195
ClientLeft = 15
ClientTop = 15
ClientWidth = 6750
ControlBox = 0 'False
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 6750
StartUpPosition = 1 'CenterOwner
Attribute VB_Name = "frmMessage"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Click()
' fmainform is defined in the module
fMainForm.WindowState = 0
Unload Me
End Sub
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
fMainForm.WindowState = 0
Unload Me
End Sub